home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc™ Source Code / Messaging / OSL / OSLTmpDf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-28  |  1.1 KB  |  43 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        OSLTmpDf.h (Orignal name: OSLTempDefs.h)
  3.  
  4.     Contains:    
  5.  
  6.     Owned by:    Nick Pilch
  7.  
  8.     Copyright:    © 1992 - 1994 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <2>     8/19/94    NP        1181622: Ownership fix.
  13.          <3>      2/9/94    NP        Tiger Team cleanup.
  14.          <2>     8/16/93    NP        Adjusted for latest OSL proposal.
  15.          <1>     7/21/93    NP        first checked in
  16.  
  17.     To Do:
  18. */
  19.  
  20. #ifndef __OSLTempdefs__
  21. #define __OSLTempdefs__
  22.  
  23. #include <AEPackObject.h>
  24.  
  25. // These guys need to be added to AEObjects.h
  26.  
  27. #define        typeCompEvtDescriptor    ((DescType)'cmpe')
  28. #define        keyCompEvtParams        ((DescType)'prms')
  29. #define        typeCompEvtParams        ((DescType)'prms')
  30. #define        keyEventClassParam        ((DescType)'evcl')
  31. #define        keyEventIDParam            ((DescType)'evid')
  32.  
  33. pascal OSErr
  34. CreateCompEventDesc(    DescType compEventClass,
  35.                         DescType compEventID,
  36.                         AERecord *args,
  37.                         Boolean disposeInputs,
  38.                         AEDesc *theDescriptor ) ;
  39.  
  40. ////////////////////////////////////////////////////////////////////////////////
  41. #endif
  42. ////////////////////////////////////////////////////////////////////////////////
  43.